Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

632732 Views

Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/169 - ChatBot

app.js cody/swapnilsparsh/30DaysOfJavaScript/169 - ChatBot/app.js
158 Views
0 Comments
function talk(){
var know = {
"Who are you" : "Hello, I am special bot for 30 Days of JavaScript",
"How are you" : "Good :)",
"What can I do for you" : "Please star this repository",
"How do I contribute" : "Please read Readme",
"ok" : "Thank You So Much ",
"Bye" : "Okay! Will meet soon.."
preview.md cody/swapnilsparsh/30DaysOfJavaScript/169 - ChatBot/preview.md
186 Views
0 Comments
![This is preview](https://user-images.githubusercontent.com/84850243/166675821-f8fd7492-a895-4abb-9b12-0b6900988b59.png)

style.css cody/swapnilsparsh/30DaysOfJavaScript/169 - ChatBot/style.css
95 Views
0 Comments
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
width: 100vw;
height: 100vh;
index.html cody/swapnilsparsh/30DaysOfJavaScript/169 - ChatBot/index.html
319 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Chatbot </title>
<link rel="stylesheet" href="style.css" />